home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Asuka / source / resextract.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-14  |  2.4 KB  |  77 lines

  1. //    Asuka - VirtualDub Build/Post-Mortem Utility
  2. //    Copyright (C) 2005 Avery Lee
  3. //
  4. //    This program is free software; you can redistribute it and/or modify
  5. //    it under the terms of the GNU General Public License as published by
  6. //    the Free Software Foundation; either version 2 of the License, or
  7. //    (at your option) any later version.
  8. //
  9. //    This program is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. //    GNU General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU General Public License
  15. //    along with this program; if not, write to the Free Software
  16. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #include <vd2/system/error.h>
  19. #include <vd2/system/file.h>
  20. #include <vd2/system/vdstl.h>
  21. #include <vd2/system/text.h>
  22. #include <vd2/system/VDString.h>
  23. #include <vector>
  24. #include <windows.h>
  25.  
  26. BOOL CALLBACK EnumResLangsCB(HMODULE hmod, LPCTSTR type, LPCTSTR name, WORD wIDLanguage, LONG_PTR lParam) {
  27.     VDTextOutputFile& out = *(VDTextOutputFile *)lParam;
  28.     char typebuf[32];
  29.     char namebuf[32];
  30.  
  31.     if (IS_INTRESOURCE(type)) {
  32.         sprintf(typebuf, "%u", (UINT)type);
  33.         type = typebuf;
  34.     }
  35.  
  36.     if (IS_INTRESOURCE(name)) {
  37.         sprintf(namebuf, "%u", (UINT)name);
  38.         name = namebuf;
  39.     }
  40.  
  41.     out.FormatLine("static const char g_%s_%s_%04x[]={", type, name, wIDLanguage);
  42.     out.PutLine("};");
  43.  
  44.     return TRUE;
  45. }
  46.  
  47. BOOL CALLBACK EnumResNamesCB(HMODULE hmod, LPCTSTR type, LPTSTR name, LONG_PTR lParam) {
  48.     EnumResourceLanguages(hmod, type, name, EnumResLangsCB, lParam);
  49.     return TRUE;
  50. }
  51.  
  52. BOOL CALLBACK EnumResTypesCB(HMODULE hmod, LPTSTR type, LONG_PTR lParam) {
  53.     EnumResourceNames(hmod, type, EnumResNamesCB, lParam);
  54.     return TRUE;
  55. }
  56.  
  57. void tool_resextract(const std::vector<const char *>& args, const std::vector<const char *>& switches, bool amd64) {
  58.     if (args.size() != 2) {
  59.         printf("usage: resextract <exe-name> <output file>\n");
  60.         exit(5);
  61.     }
  62.  
  63.     const char *exename = args[0];
  64.     const char *outfile = args[1];
  65.  
  66.     VDTextOutputFile out(VDTextAToW(outfile).c_str());
  67.  
  68.     HMODULE hmod = LoadLibraryEx(exename, NULL, LOAD_LIBRARY_AS_DATAFILE);
  69.  
  70.     if (!hmod)
  71.         throw MyWin32Error("Cannot load executable module \"%s\": %%s", GetLastError(), exename);
  72.  
  73.     EnumResourceTypes(hmod, EnumResTypesCB, (LONG_PTR)&out);
  74.  
  75.     FreeLibrary(hmod);
  76. }
  77.